home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / tcl / tcl70b2.lha / tcl7.0b2 / tests / for.test < prev    next >
Text File  |  1993-02-06  |  5KB  |  170 lines

  1. # Commands covered:  foreach, for, continue, break
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1991-1993 The Regents of the University of California.
  8. # All rights reserved.
  9. #
  10. # Permission is hereby granted, without written agreement and without
  11. # license or royalty fees, to use, copy, modify, and distribute this
  12. # software and its documentation for any purpose, provided that the
  13. # above copyright notice and the following two paragraphs appear in
  14. # all copies of this software.
  15. #
  16. # IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  17. # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  18. # OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  19. # CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  20. #
  21. # THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  22. # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  23. # AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  24. # ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  25. # PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  26. #
  27. # $Header: /user6/ouster/tcl/tests/RCS/for.test,v 1.8 93/02/06 15:54:05 ouster Exp $ (Berkeley)
  28.  
  29. if {[string compare test [info procs test]] == 1} then {source defs}
  30.  
  31. # Basic "foreach" operation.
  32.  
  33. test for-1.1 {basic foreach tests} {
  34.     set a {}
  35.     foreach i {a b c d} {
  36.     set a [concat $a $i]
  37.     }
  38.     set a
  39. } {a b c d}
  40. test for-1.2 {basic foreach tests} {
  41.     set a {}
  42.     foreach i {a b {{c d} e} {123 {{x}}}} {
  43.     set a [concat $a $i]
  44.     }
  45.     set a
  46. } {a b {c d} e 123 {{x}}}
  47. test for-1.3 {basic foreach tests} {catch {foreach} msg} 1
  48. test for-1.4 {basic foreach tests} {
  49.     catch {foreach} msg
  50.     set msg
  51. } {wrong # args: should be "foreach varName list command"}
  52. test for-1.5 {basic foreach tests} {catch {foreach i} msg} 1
  53. test for-1.6 {basic foreach tests} {
  54.     catch {foreach i} msg
  55.     set msg
  56. } {wrong # args: should be "foreach varName list command"}
  57. test for-1.7 {basic foreach tests} {catch {foreach i j} msg} 1
  58. test for-1.8 {basic foreach tests} {
  59.     catch {foreach i j} msg
  60.     set msg
  61. } {wrong # args: should be "foreach varName list command"}
  62. test for-1.9 {basic foreach tests} {catch {foreach i j k l} msg} 1
  63. test for-1.10 {basic foreach tests} {
  64.     catch {foreach i j k l} msg
  65.     set msg
  66. } {wrong # args: should be "foreach varName list command"}
  67. test for-1.11 {basic foreach tests} {
  68.     set a {}
  69.     foreach i {} {
  70.     set a [concat $a $i]
  71.     }
  72.     set a
  73. } {}
  74. test for-1.11 {foreach errors} {
  75.     catch {unset a}
  76.     set a(0) 44
  77.     list [catch {foreach a {1 2 3} {}} msg] $msg
  78. } {1 {couldn't set loop variable}}
  79. catch {unset a}
  80.  
  81. # Check "continue".
  82.  
  83. test for-2.1 {continue tests} {catch continue} 4
  84. test for-2.2 {continue tests} {
  85.     set a {}
  86.     foreach i {a b c d} {
  87.     if {[string compare $i "b"] == 0} continue
  88.     set a [concat $a $i]
  89.     }
  90.     set a
  91. } {a c d}
  92. test for-2.3 {continue tests} {
  93.     set a {}
  94.     foreach i {a b c d} {
  95.     if {[string compare $i "b"] != 0} continue
  96.     set a [concat $a $i]
  97.     }
  98.     set a
  99. } {b}
  100. test for-2.4 {continue tests} {catch {continue foo} msg} 1
  101. test for-2.5 {continue tests} {
  102.     catch {continue foo} msg
  103.     set msg
  104. } {wrong # args: should be "continue"}
  105.  
  106. # Check "break".
  107.  
  108. test for-3.1 {break tests} {catch break} 3
  109. test for-3.2 {break tests} {
  110.     set a {}
  111.     foreach i {a b c d} {
  112.     if {[string compare $i "c"] == 0} break
  113.     set a [concat $a $i]
  114.     }
  115.     set a
  116. } {a b}
  117. test for-3.3 {break tests} {catch {break foo} msg} 1
  118. test for-3.4 {break tests} {
  119.     catch {break foo} msg
  120.     set msg
  121. } {wrong # args: should be "break"}
  122.  
  123. # Check "for" and its use of continue and break.
  124.  
  125. test for-4.1 {for tests} {
  126.     set a {}
  127.     for {set i 1} {$i<6} {set i [expr $i+1]} {
  128.     set a [concat $a $i]
  129.     }
  130.     set a
  131. } {1 2 3 4 5}
  132. test for-4.2 {for tests} {
  133.     set a {}
  134.     for {set i 1} {$i<6} {set i [expr $i+1]} {
  135.     if $i==4 continue
  136.     set a [concat $a $i]
  137.     }
  138.     set a
  139. } {1 2 3 5}
  140. test for-4.3 {for tests} {
  141.     set a {}
  142.     for {set i 1} {$i<6} {set i [expr $i+1]} {
  143.     if $i==4 break
  144.     set a [concat $a $i]
  145.     }
  146.     set a
  147. } {1 2 3}
  148. test for-4.4 {for tests} {catch {for 1 2 3} msg} 1
  149. test for-4.5 {for tests} {
  150.     catch {for 1 2 3} msg
  151.     set msg
  152. } {wrong # args: should be "for start test next command"}
  153. test for-4.6 {for tests} {catch {for 1 2 3 4 5} msg} 1
  154. test for-4.7 {for tests} {
  155.     catch {for 1 2 3 4 5} msg
  156.     set msg
  157. } {wrong # args: should be "for start test next command"}
  158. test for-4.8 {for tests} {
  159.     set a {xyz}
  160.     for {set i 1} {$i<6} {set i [expr $i+1]} {}
  161.     set a
  162. } xyz
  163. test for-4.9 {for tests} {
  164.     set a {}
  165.     for {set i 1} {$i<6} {set i [expr $i+1]; if $i==4 break} {
  166.     set a [concat $a $i]
  167.     }
  168.     set a
  169. } {1 2 3}
  170.